home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / graphics / writepixel.c < prev   
Encoding:
C/C++ Source or Header  |  1996-09-12  |  1.0 KB  |  56 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: writepixel.c,v 1.1 1996/08/15 13:26:15 digulla Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "graphics_intern.h"
  8. #include <graphics/rastport.h>
  9.  
  10. LONG driver_WritePixel (struct RastPort *, long, long);
  11.  
  12. /*****************************************************************************
  13.  
  14.     NAME */
  15.     #include <clib/graphics_protos.h>
  16.  
  17.     __AROS_LH3(LONG, WritePixel,
  18.  
  19. /*  SYNOPSIS */
  20.     __AROS_LHA(struct RastPort *, rp, A1),
  21.     __AROS_LHA(long             , x, D0),
  22.     __AROS_LHA(long             , y, D1),
  23.  
  24. /*  LOCATION */
  25.     struct GfxBase *, GfxBase, 54, Graphics)
  26.  
  27. /*  FUNCTION
  28.  
  29.     INPUTS
  30.  
  31.     RESULT
  32.  
  33.     NOTES
  34.  
  35.     EXAMPLE
  36.  
  37.     BUGS
  38.  
  39.     SEE ALSO
  40.  
  41.     INTERNALS
  42.  
  43.     HISTORY
  44.     29-10-95    digulla automatically created from
  45.                 graphics_lib.fd and clib/graphics_protos.h
  46.  
  47. *****************************************************************************/
  48. {
  49.     __AROS_FUNC_INIT
  50.     __AROS_BASE_EXT_DECL(struct GfxBase *,GfxBase)
  51.  
  52.     return driver_WritePixel (rp, x, y);
  53.  
  54.     __AROS_FUNC_EXIT
  55. } /* WritePixel */
  56.